home *** CD-ROM | disk | FTP | other *** search
/ Enter 2005 October / enter-2005-10.iso / files / jedit42install.exe / {app} / jedit.jar / bsh / commands / pathToFile.bsh < prev    next >
Encoding:
Text File  |  2003-12-27  |  289 b   |  11 lines

  1. /**
  2.     Create a File object corresponding to the specified file path name, taking
  3.     into account the bsh current working directory (bsh.cwd)
  4. */
  5.  
  6. bsh.help.pathToFile = "usage: File pathToFile( String )";
  7.  
  8. File pathToFile( String filename ) {
  9.     return this.interpreter.pathToFile( filename );
  10. }
  11.